Fix calendar_dates outside of calendars coverage issue. - #83
Conversation
Some transit agencies #TTC publishes special days service in `calendar_dates` outside of the `calendars` coverage. The issue was that the app data contains a random day schedule in the future w/o the other days in the middle which will show as "no service" instead of displaying previous week(s) schedule.
|
Note Reviews pausedIt looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthroughThe parser now honors ChangesGTFS date handling
Estimated code review effort: 3 (Moderate) | ~20 minutes Sequence Diagram(s)sequenceDiagram
participant GReader
participant GSpec
participant GCalendarDate
GReader->>GSpec: parse calendar.txt
GSpec-->>GReader: return calendar coverage bounds
GReader->>GCalendarDate: check calendar-date coverage
GCalendarDate-->>GReader: accept or ignore record
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Pull request overview
Adjusts GTFS ingestion to avoid “no service” gaps caused by calendar_dates.txt entries that fall outside the overall calendar.txt coverage window (e.g., a lone future special-service date without intermediate schedules).
Changes:
- Read
calendar.txtbeforecalendar_dates.txtand compute the overall calendars min/max coverage dates. - Ignore
calendar_dates.txtrows that are outside that computedcalendar.txtcoverage window (while still accepting calendar-dates-only feeds). - Refactor “today” handling in
DefaultAgencyToolsto centralize date selection ingetTodayDateInt().
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| src/main/java/org/mtransit/parser/gtfs/GReader.java | Reorders parsing and filters calendar_dates against calendar coverage bounds to prevent sparse future dates from creating “no service” gaps. |
| src/main/java/org/mtransit/parser/gtfs/data/GSpecExt.kt | Adds Kotlin extensions to compute calendar coverage bounds and a helper to check whether a calendar date falls within them. |
| src/main/java/org/mtransit/parser/DefaultAgencyTools.java | Centralizes the “today” value via getTodayDateInt() and simplifies how the useful period’s “today” is set. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
🧹 Nitpick comments (1)
src/main/java/org/mtransit/parser/gtfs/data/GSpecExt.kt (1)
14-15: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick winRename the local upper-bound variable.
calendarsMaxStartDateactually contains the maximum end date. Rename it tocalendarsMaxEndDateso theisBetweenupper bound remains unambiguous and future edits do not reintroduce the start/end mix-up.🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the rest with a brief reason, keep changes minimal, and validate. In `@src/main/java/org/mtransit/parser/gtfs/data/GSpecExt.kt` around lines 14 - 15, In the surrounding calendar date-range logic, rename the local variable calendarsMaxStartDate to calendarsMaxEndDate to match the value returned by calendarsMaxEndDate(), and update its use as the upper bound in gCalendarDate.isBetween without changing behavior.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Nitpick comments:
In `@src/main/java/org/mtransit/parser/gtfs/data/GSpecExt.kt`:
- Around line 14-15: In the surrounding calendar date-range logic, rename the
local variable calendarsMaxStartDate to calendarsMaxEndDate to match the value
returned by calendarsMaxEndDate(), and update its use as the upper bound in
gCalendarDate.isBetween without changing behavior.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Pro Plus
Run ID: 798a8a1c-13ac-482a-8a07-cc65389e823b
📒 Files selected for processing (2)
src/main/java/org/mtransit/parser/gtfs/GReader.javasrc/main/java/org/mtransit/parser/gtfs/data/GSpecExt.kt
🚧 Files skipped from review as they are similar to previous changes (1)
- src/main/java/org/mtransit/parser/gtfs/GReader.java
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 3 out of 3 changed files in this pull request and generated no new comments.
Comments suppressed due to low confidence (1)
src/main/java/org/mtransit/parser/gtfs/data/GSpecExt.kt:15
- Local variable name
calendarsMaxStartDateis misleading here: it actually holds the max end date (fromcalendarsMaxEndDate()), which makes the coverage logic harder to read and easy to misinterpret during future changes.
val calendarsMinStartDate = calendarsMinStartDate() ?: return null // no calendars (only calendar dates inside GTFS)
val calendarsMaxStartDate = calendarsMaxEndDate() ?: return null // no calendars (only calendar dates inside GTFS)
return gCalendarDate.isBetween(calendarsMinStartDate, calendarsMaxStartDate)
…parser': - commons: Google-- - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: fix `assert` -> `assertEquals` - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Google-- - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: fix `assert` -> `assertEquals` - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Google-- - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: fix `assert` -> `assertEquals` - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…er': - commons: Google-- - commons: `libs.versions.toml` > add links to changelogs in comments - commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832 - commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831 - commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830 - commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184 - commons-android: Add configuration for auto review in coderabbit - commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android - commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added - commons-android: tests++ - commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181 - commons-java: fix `assert` -> `assertEquals` - commons-java: Add initial configuration for coderabbit reviews - commons-java: Source labels > ignore "gtfsapi" #TransLink - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83 - parser: Add .coderabbit.yaml configuration file
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons: `libs.versions.toml` > add links to changelogs in comments - commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832 - commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831 - commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830 - commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829 - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184 - commons-android: Add configuration for auto review in coderabbit - commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android - commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added - commons-android: tests++ - commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - commons-java: Add initial configuration for coderabbit reviews - commons-java: Source labels > ignore "gtfsapi" #TransLink - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83 - parser: Add .coderabbit.yaml configuration file
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons: `libs.versions.toml` > add links to changelogs in comments - commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832 - commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831 - commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830 - commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829 - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184 - commons-android: Add configuration for auto review in coderabbit - commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android - commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added - commons-android: tests++ - commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - commons-java: Add initial configuration for coderabbit reviews - commons-java: Source labels > ignore "gtfsapi" #TransLink - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83 - parser: Add .coderabbit.yaml configuration file
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons: `libs.versions.toml` > add links to changelogs in comments - commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832 - commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831 - commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830 - commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829 - commons: Update maps dependencies mtransitapps/commons#826 - commons: Update Kotlin from `2.3.21` to `2.4.10` mtransitapps/commons#827 - commons: Update Hilt from `2.59.2` to `2.60.1` mtransitapps/commons#828 - commons: Update Protobuf from `4.34.1` to `4.35.1` mtransitapps/commons#825 - commons: Update OkHttp from `5.3.2` to `5.4.0` mtransitapps/commons#824 - commons: Update Glide version from `5.0.7` to `5.0.9` mtransitapps/commons#823 - commons: Bump org.xerial:sqlite-jdbc from 3.53.0.0 to 3.53.2.0 mtransitapps/commons#822 - commons: Build(deps): Bump android-gradlePlugin from 9.3.0 to 9.3.1 mtransitapps/commons#821 - commons: Use `git update-index --skip-worktree` to hide locally changed "key" files mtransitapps/commons#820 - commons: Build(deps): Bump com.google.android.libraries.ads.mobile.sdk:ads-mobile-sdk from 1.2.1 to 1.3.0 mtransitapps/commons#819 - commons: Target SDK `36` (Android 16) before Aug 31, 2026 mtransitapps/commons#817 - commons: Create `.aiexclude` to manage AI file exclusions mtransitapps/commons#816 - commons: Allow `download()` user-agent override via `MT_DOWNLOAD_USER_AGENT` mtransitapps/commons#815 - commons: Build(deps): Bump android-gradlePlugin from 9.2.1 to 9.3.0 mtransitapps/commons#814 - commons: Fix `mt-record-screenshots.yml` #810 - commons: Switch latest APK fetch to `gh release download` and pick first APK artifact mtransitapps/commons#810 - commons: Build(deps): Bump com.google.ads.mediation:facebook from 6.21.0.3 to 6.21.0.4 in the ads group across 1 directory mtransitapps/commons#813 - commons: Build(deps): Bump com.google.firebase:firebase-bom from 34.15.0 to 34.16.0 in the gms group across 1 directory mtransitapps/commons#812 - commons: Build(deps): Bump com.google.devtools.ksp from 2.3.9 to 2.3.10 in the kotlin-ksp-compose group across 1 directory mtransitapps/commons#811 - commons: Gradle 9.4+ > enable parallel sync - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184 - commons-android: Add configuration for auto review in coderabbit - commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android - commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added - commons-android: tests++ - commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181 - commons-android: GTFS-RT Trip Update schedule status > fix wrong 1 min `validity` mtransitapps/commons-android#180 - commons-android: GTFS-RT > Trip Updates > try to fix wrong stop sequence when trip stop passed once & keep all cancelled trips/stops mtransitapps/commons-android#178 - commons-android: Update SSL cert mtransitapps/commons-android#177 - commons-android: GTFS-RT > Trip Updates > handle wrong stop sequence w/o loosing all data mtransitapps/commons-android#176 - commons-android: GTFS-RT Trip Update > fix same stop matching mtransitapps/commons-android#175 - commons-android: suppress - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - commons-java: Add initial configuration for coderabbit reviews - commons-java: Source labels > ignore "gtfsapi" #TransLink - commons-java: String utils > "and" -> "&" always (tests) - commons-java: String utils > "and" -> "&" always - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83 - parser: Add .coderabbit.yaml configuration file - parser: Auto enable direction splitter when `trips.txt` doesn't have `direction_id` column mtransitapps/parser#82 - parser: `JSON` > `use_route_long_name_for_route_short_name` > use RSN cleaners - parser: comment fix - parser: `JSON` > + `[keep/exclude]_routes`.`route_short_name_regex` #NRT mtransitapps/parser#79
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons: `libs.versions.toml` > add links to changelogs in comments - commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832 - commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831 - commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830 - commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829 - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184 - commons-android: Add configuration for auto review in coderabbit - commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android - commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added - commons-android: tests++ - commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - commons-java: Add initial configuration for coderabbit reviews - commons-java: Source labels > ignore "gtfsapi" #TransLink - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83 - parser: Add .coderabbit.yaml configuration file
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons: `libs.versions.toml` > add links to changelogs in comments - commons: Update Liftoff/Vungle from 7.7.4.2 to 7.7.6.0. mtransitapps/commons#832 - commons: Upgrade maps-utils `4.5.2` -> `5.0.0` mtransitapps/commons#831 - commons: Initialize .coderabbit.yaml with review settings mtransitapps/commons#830 - commons: Add `.coderabbit.yaml` configuration mtransitapps/commons#829 - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-android: GTFS-RT Trip Updates > fix static data used too small. mtransitapps/commons-android#184 - commons-android: Add configuration for auto review in coderabbit - commons-android: Merge branch 'master' of github.com:mtransitapps/commons-android - commons-android: suppress deprecated GTFS-RT vehicle location trip descriptor schedule relationship added - commons-android: tests++ - commons-android: Ignore far away vehicles locations mtransitapps/commons-android#181 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - commons-java: Add initial configuration for coderabbit reviews - commons-java: Source labels > ignore "gtfsapi" #TransLink - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83 - parser: Add .coderabbit.yaml configuration file
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
…parser': - commons: Add initial .pr_agent.toml configuration file - commons: Add Qodo config to `.pr_agent.toml` mtransitapps/commons#833 - commons: Google-- - commons-android: `Schedule.Timestamp` KT ext mtransitapps/commons-android#191 - commons-android: Add initial .pr_agent.toml configuration file - commons-android: GTFS-RT > feeds `timestamp` max age mtransitapps/commons-android#189 - commons-android: Fix Weird Capitalization mtransitapps/commons-android#187 - commons-android: Google-- - commons-android: Fix assert from #185 - commons-android: GTFS-RT Trip Updates > filter duplicate unique trip updates #TripModifications mtransitapps/commons-android#185 - commons-java: Add initial .pr_agent.toml configuration file - commons-java: fix `assert` -> `assertEquals` - parser: Add initial .pr_agent.toml configuration file - parser: Fix `calendar_dates` outside of `calendars` coverage issue. mtransitapps/parser#83
Some transit agencies #TTC publishes special days service in
calendar_datesoutside of thecalendarscoverage. The issue was that the app data contains a random day schedule in the future w/o the other days in the middle which will show as "no service" instead of displaying previous week(s) schedule.